home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / ZED3DSRC.ZIP / 3DS.H < prev    next >
C/C++ Source or Header  |  1995-06-19  |  270b  |  21 lines

  1. #ifndef __3DS_H
  2. #define __3DS_H
  3.  
  4. #include <objects.h>
  5.  
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9.  
  10. /* routine for reading 3ds ASCII file into an object */
  11.  
  12. object *read_3ds_file(char *filename, int print_progress);
  13.  
  14.  
  15. #ifdef __cplusplus
  16. }
  17. #endif
  18. #endif
  19.  
  20.  
  21.